home *** CD-ROM | disk | FTP | other *** search
/ GameStar 2006 February / Gamestar_81_2006-02_dvd.iso / Red Shark / Villages / Farms.script < prev    next >
Text File  |  2001-05-17  |  856b  |  43 lines

  1. //---------------------------------
  2. //  Villages script
  3. //
  4. //  (c) 2001 G5 Software:
  5. //      Sergey Shoolts
  6. //      Vlad Suglobov
  7. //      Max Ryumin
  8. //      Alex Tabunov
  9. //      Alex Koloskov
  10. //---------------------------------
  11.  
  12. class CBaseFarm
  13. {
  14.   array ObjectClasses  = array(
  15.     "InteriorObject",
  16.     "GameObject",
  17.     "InteriorObject",
  18.     "InteriorObject",
  19.     "GameObject",
  20.     "InteriorObject"
  21.    );
  22.  
  23.   array ObjectPatterns = array(
  24.     "CBaseSheaf",
  25.     "CBaseDoubleHouse",
  26.     "CBaseWoodShed",
  27.     "CBaseWell",
  28.     "CBaseSingleHouse",
  29.     "CBaseBigSheaf"
  30.    );
  31. }
  32.  
  33. class CFarm_01 extends CBaseFarm
  34. {
  35.   string VillageMapFile  = "Villages/Farm_01.bmp";
  36.   float  VillageWidth    = 100.0;
  37.   float  VillageHeight   = 100.0;
  38.   float  RandomDirection = 5.0;
  39.   vector RandomPosition  = vector(0.0, 0.0, 0.0);
  40. }
  41.  
  42.  
  43.